3
0
Fork 0
forked from mirrors/nixpkgs

cinnamon.cjs refactor: include version in name

This commit is contained in:
Vladimír Čunát 2013-12-02 22:01:24 +01:00
parent d09b722f77
commit 3a5f9ecd70

View file

@ -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 ];
};
}
}