Ignore compiled .nix
This commit is contained in:
parent
29c0e9a325
commit
b6397f2348
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,5 +1,9 @@
|
||||
**/.gup
|
||||
**/result*
|
||||
**/.stack-work
|
||||
uuid-crypto.nix
|
||||
**/dist
|
||||
|
||||
cryptoids/cryptoids.nix
|
||||
cryptoids-types/cryptoids-types.nix
|
||||
filepath-crypto/filepath-crypto.nix
|
||||
uuid-crypto/uuid-crypto.nix
|
||||
|
||||
@ -1,8 +0,0 @@
|
||||
{ mkDerivation, base, binary, http-api-data, path-pieces, stdenv }:
|
||||
mkDerivation {
|
||||
pname = "cryptoids-types";
|
||||
version = "0.0.0";
|
||||
src = ./.;
|
||||
libraryHaskellDepends = [ base binary http-api-data path-pieces ];
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}
|
||||
@ -1,13 +0,0 @@
|
||||
{ mkDerivation, base, binary, bytestring, cryptoids-types
|
||||
, cryptonite, memory, stdenv
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "cryptoids";
|
||||
version = "0.0.0";
|
||||
src = ./.;
|
||||
libraryHaskellDepends = [
|
||||
base binary bytestring cryptoids-types cryptonite memory
|
||||
];
|
||||
description = "Reversable and secure encoding of object ids as a bytestring";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user