cinnamon.cjs refactor: include version in name
This commit is contained in:
parent
d09b722f77
commit
3a5f9ecd70
@ -1,9 +1,12 @@
|
||||
{ stdenv, fetchurl, pkgconfig, autoreconfHook, python
|
||||
, dbus_glib, cairo, spidermonkey_185, gobjectIntrospection}:
|
||||
, dbus_glib, cairo, spidermonkey_185, gobjectIntrospection
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cjs";
|
||||
let
|
||||
version="2.0.0";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cjs-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://github.com/linuxmint/cjs/archive/${version}.tar.gz";
|
||||
@ -34,4 +37,4 @@ stdenv.mkDerivation rec {
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.roelof ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user