system-argv0: added package

This commit is contained in:
Edward Tjörnhammar 2014-10-02 20:53:55 +02:00
parent bf885a8d87
commit 949b80a229
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, systemFilepath, text }:
cabal.mkDerivation (self: {
pname = "system-argv0";
version = "0.1.1";
sha256 = "1ijfry2r3cypp3zmws6dczk21m4n86fkxjld7yl19gjp46fxllbd";
buildDepends = [ systemFilepath text ];
meta = {
homepage = "https://john-millikin.com/software/haskell-filesystem/";
description = "Get argv[0] as a FilePath";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2437,6 +2437,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
symbol = callPackage ../development/libraries/haskell/symbol {};
systemArgv0 = callPackage ../development/libraries/haskell/system-argv0 {};
systemFilepath = callPackage ../development/libraries/haskell/system-filepath {};
systemFileio = callPackage ../development/libraries/haskell/system-fileio {};