mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
storebrowse: remove (#95919)
I don't even bother to add it as deprecated to aliases.nix. It was marked as broken in 2016.
This commit is contained in:
parent
3c99c3105f
commit
78cde427e8
@ -1,44 +0,0 @@
|
||||
{ stdenv, fetchurl, fetchhg, go, sqlite}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "storebrowse-20130318212204";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://viric.name/cgi-bin/storebrowse/tarball/storebrowse-775928f68e53.tar.gz?uuid=775928f68e53";
|
||||
name = "${name}.tar.gz";
|
||||
sha256 = "1yb8qbw95d9561s10k12a6lwv3my8h52arsbfcpizx74dwfsv7in";
|
||||
};
|
||||
|
||||
# This source has license BSD
|
||||
srcGoSqlite = fetchhg {
|
||||
url = "https://code.google.com/p/gosqlite/";
|
||||
rev = "5baefb109e18";
|
||||
sha256 = "0mqfnx06jj15cs8pq9msny2z18x99hgk6mchnaxpg343nzdiz4zk";
|
||||
};
|
||||
|
||||
buildPhase = ''
|
||||
PATH=${go}/bin:$PATH
|
||||
mkdir $TMPDIR/go
|
||||
export GOPATH=$TMPDIR/go
|
||||
|
||||
${stdenv.lib.optionalString (stdenv.hostPlatform.system == "armv5tel-linux") "export GOARM=5"}
|
||||
|
||||
GOSQLITE=$GOPATH/src/code.google.com/p/gosqlite
|
||||
mkdir -p $GOSQLITE
|
||||
cp -R $srcGoSqlite/* $GOSQLITE/
|
||||
export CGO_CFLAGS=-I${sqlite.dev}/include
|
||||
export CGO_LDFLAGS=-L${sqlite.out}/lib
|
||||
go build -ldflags "-r ${sqlite.out}/lib" -o storebrowse
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp storebrowse $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://viric.name/cgi-bin/storebrowse";
|
||||
license = stdenv.lib.licenses.agpl3Plus;
|
||||
broken = true;
|
||||
};
|
||||
}
|
@ -6968,8 +6968,6 @@ in
|
||||
|
||||
stm32loader = with python3Packages; toPythonApplication stm32loader;
|
||||
|
||||
storebrowse = callPackage ../tools/system/storebrowse { };
|
||||
|
||||
stubby = callPackage ../tools/networking/stubby { };
|
||||
|
||||
syntex = callPackage ../tools/graphics/syntex {};
|
||||
|
Loading…
Reference in New Issue
Block a user