bitvector: remove broken package

This commit is contained in:
Alex Rice 2019-12-29 12:13:52 +00:00
parent 36840c5ff7
commit a519f22c03
No known key found for this signature in database
GPG key ID: 93DDCD7A2B3F3B88
2 changed files with 0 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{ stdenv, agda, fetchgit, AgdaStdlib }:
agda.mkDerivation (self: rec {
version = "f1c173313f2a41d95a8dc6053f9365a24690e18d";
name = "bitvector-${version}";
src = fetchgit {
url = "https://github.com/copumpkin/bitvector.git";
rev = version;
sha256 = "0jb421lxvyxz26sxa81qjmn1gfcxfh0fmbq128f0kslqhiiaqfrh";
};
buildDepends = [ AgdaStdlib ];
sourceDirectories = [ "Data" ];
meta = {
homepage = "https://github.com/copumpkin/bitvector";
description = "Sequences of bits and common operations on them";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ ];
broken = true;
};
})

View file

@ -15144,8 +15144,6 @@ in
inherit (haskellPackages) ghcWithPackages;
};
bitvector = callPackage ../development/libraries/agda/bitvector { };
### DEVELOPMENT / LIBRARIES / JAVA
commonsBcel = callPackage ../development/libraries/java/commons/bcel { };