scim: 0.1.9 -> 0.2.1 (sc-im)

Move derivation definition to "sc-im", as project was renamed.
Also change the license to BSD, which is what what-license.com
detechted.
This commit is contained in:
Matthias Beyer 2016-01-30 16:09:31 +01:00
parent 1f2b819783
commit 72c7b1af7f
2 changed files with 7 additions and 10 deletions

View File

@ -1,15 +1,15 @@
{ stdenv, fetchurl, yacc, ncurses, libxml2 }: { stdenv, fetchurl, yacc, ncurses, libxml2 }:
let let
version = "0.1.9"; version = "0.2.1";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "scim-${version}"; name = "sc-im-${version}";
src = fetchurl { src = fetchurl {
url = "https://github.com/andmarti1424/sc-im/archive/v${version}.tar.gz"; url = "https://github.com/andmarti1424/sc-im/archive/v${version}.tar.gz";
sha256 = "00rjz344acw0bxv78x1w9jz8snl9lb9qhr9z22phxinidnd3vaaz"; sha256 = "08yks8grj5w434r81dy2knzbdhdnkc23r0d9v848mcl706xnjl6j";
}; };
buildInputs = [ yacc ncurses libxml2 ]; buildInputs = [ yacc ncurses libxml2 ];
@ -29,12 +29,9 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
homepage = "https://github.com/andmarti1424/scim"; homepage = "https://github.com/andmarti1424/sc-im";
description = "SCIM - Spreadsheet Calculator Improvised - SC fork"; description = "SC-IM - Spreadsheet Calculator Improvised - SC fork";
license = { license = stdenv.lib.licenses.bsdOriginal;
fullName = "SCIM License";
url = "https://github.com/andmarti1424/scim/raw/master/LICENSE";
};
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
platforms = with stdenv.lib.platforms; linux; # Cannot test others platforms = with stdenv.lib.platforms; linux; # Cannot test others
}; };

View File

@ -13150,7 +13150,7 @@ let
boost = boost155; boost = boost155;
}; };
sc-im = callPackage ../applications/misc/scim { }; sc-im = callPackage ../applications/misc/sc-im { };
scite = callPackage ../applications/editors/scite { }; scite = callPackage ../applications/editors/scite { };