Merge pull request #83264 from aneeshusa/disown-some-packages
Disown some packages
This commit is contained in:
commit
83c0498f70
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Speed up builtin gnome-shell animations";
|
description = "Speed up builtin gnome-shell animations";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ aneeshusa timbertson tiramiseb ];
|
maintainers = with maintainers; [ timbertson tiramiseb ];
|
||||||
homepage = http://gfxmonk.net/dist/0install/gnome-shell-impatience.xml;
|
homepage = http://gfxmonk.net/dist/0install/gnome-shell-impatience.xml;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Display system informations in gnome shell status bar";
|
description = "Display system informations in gnome shell status bar";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ aneeshusa tiramiseb ];
|
maintainers = with maintainers; [ tiramiseb ];
|
||||||
homepage = https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet;
|
homepage = https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
{ stdenv, fetchpatch, fetchurl, yacc }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
version = "2.3.1";
|
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
|
||||||
pname = "as31";
|
|
||||||
inherit version;
|
|
||||||
src = fetchurl {
|
|
||||||
name = "as31-${version}.tar.gz"; # Nix doesn't like the colons in the URL
|
|
||||||
url = "http://wiki.erazor-zone.de/_media/wiki:projects:linux:as31:as31-${version}.tar.gz";
|
|
||||||
sha256 = "0mbk6z7z03xb0r0ccyzlgkjdjmdzknck4yxxmgr9k7v8f5c348fd";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ yacc ];
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
(fetchpatch {
|
|
||||||
name = "CVE-2012-0808.patch";
|
|
||||||
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=655496;filename=as31-mkstemps.patch;msg=5";
|
|
||||||
sha256 = "0iia4wa8m141bwz4588yxb1dp2qwhapcii382sncm6jvwyngwh21";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
chmod +x ./configure
|
|
||||||
'';
|
|
||||||
|
|
||||||
postConfigure = ''
|
|
||||||
rm as31/parser.c
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = http://wiki.erazor-zone.de/wiki:projects:linux:as31;
|
|
||||||
description = "An 8031/8051 assembler by Ken Stauffer and Theo Deraadt which produces a variety of object code output formats";
|
|
||||||
maintainers = with maintainers; [ aneeshusa ];
|
|
||||||
platforms = with platforms; unix;
|
|
||||||
};
|
|
||||||
}
|
|
@ -118,7 +118,7 @@ in buildRubyGem rec {
|
|||||||
description = "A tool for building complete development environments";
|
description = "A tool for building complete development environments";
|
||||||
homepage = https://www.vagrantup.com/;
|
homepage = https://www.vagrantup.com/;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ aneeshusa ma27 ];
|
maintainers = with maintainers; [ ma27 ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,6 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
'';
|
'';
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ edwtjo pSub aneeshusa ];
|
maintainers = with maintainers; [ edwtjo pSub ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -708,8 +708,6 @@ in
|
|||||||
|
|
||||||
artyFX = callPackage ../applications/audio/artyFX {};
|
artyFX = callPackage ../applications/audio/artyFX {};
|
||||||
|
|
||||||
as31 = callPackage ../development/compilers/as31 {};
|
|
||||||
|
|
||||||
owl-lisp = callPackage ../development/compilers/owl-lisp {};
|
owl-lisp = callPackage ../development/compilers/owl-lisp {};
|
||||||
|
|
||||||
ascii = callPackage ../tools/text/ascii { };
|
ascii = callPackage ../tools/text/ascii { };
|
||||||
|
Loading…
Reference in New Issue
Block a user